634 Royalty-Free Audio Tracks for "Start Engine"

00:00
00:06
Truck air brakes being released. Engine idles in background. Recorded with a tascam dr-44wl.
Author: Rabbydaw
00:00
00:60
Small car start and go from inside recorded with mixpre 6 and audio technica bp4025. Car: citroen c3. All sound are free. But if you like to support me, please check my youtubechannel ( https://www. Youtube. Com/channel/uc8p5ewuxgvaabjffv9oi5ha ) and watch some videos about my fieldrecordings. Cost you nothing … just few seconds browsing trought my channel and if you like it, please subscribe. If you like the quality of the sound, please give the sound 4 or 5 stars. . . I would be delighted. Thanks for support.
Author: Garuda
00:00
00:12
Interior: door close, keys inserted, car starts, shift to drive, quick acceleration, fade to distant left. All audio independently recorded using a marantz pmd620 then produced in pro tools. Please rate this sound.
Author: Producerdan
00:00
00:01
909 kick with massive distortion and eqíng. Used the eks-9 vst plugin to emulate a 909 kick drum. Placed a huge load of different distortion plugins on different spores, to create a heavy distorted sound. In between those distortion plugins i used several eq's to manipulate the sound. This is what it has become. Programs used. . :. Fl studioeks-9 ( 909 drum )camelphatdevastorfruity parametric eq 2wave candyizotope trashschope eq.
Author: Massacresoundz
00:00
01:03
Car startup, extended idle, shut off.
Author: Loveburd
00:00
00:01
Start sound of mac ii iix iicx iici se/30. Create by dissessemble rom code and use wave table algorithm write c program write wav file. C program below:. /* mac_ii. C *//* boot beep mac ii *//* 2558/09/06 */. #include. #define knumber_samples 30000#define kdelay_note 300#define kwave_table_value 0x30013f10#define ksample_rate 22257 // hz. Void preparewavetable( unsigned short *wavetable, unsigned int value );void updatewavetable( unsigned short *wavetable, unsigned short chiso );void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate );. Int main () {. // ---- wave tableunsigned short wavetable[256];// ---- sound data, stereoshort sounddata[knumber_samples << 1];// ---- increment array (16/16 bit fix point integer)int arrayincrement[] = {3 << 16, 4 << 16, (3 << 16) + 0x2f2, 6 << 16};// ---- prepare wave tablepreparewavetable( wavetable, kwave_table_value );. // ---- array phase (16/16 bit fix point integer)unsigned int arrayphase[] = {0, 0, 0, 0}; // set all = 0. Unsigned int samplenumber = 0;while( samplenumber < knumber_samples ) {. // ---- calculate sampleunsigned int channelleft = 0;unsigned int channelright = 0;unsigned char notenumber = 0;while ( notenumber < 4 ) {// ---- see if should update phase for note, only do if play noteif( samplenumber >= notenumber*kdelay_note ) {// ---- up date phase beforearrayphase[notenumber] += arrayincrement[notenumber];// ---- not let out of range [0; 255]if( arrayphase[notenumber] > 0xff0000 ) // 0xff0000 == 255 << 16arrayphase[notenumber] -= 0xff0000; // return to begin of wave table}unsigned short mauvat = wavetable[arrayphase[notenumber] >> 16];. // ---- add sound componentsif( notenumber < 2 ) // ---- first 2 notes left channelchannelleft += mauvat;else // ---- last 2 notes right channelchannelright += mauvat;// ---- next notenotenumber++;}// ---- save left and right samplessounddata[samplenumber << 1] = (channelleft << 9) - 0x8000; // use << 1 for 16 bitsounddata[(samplenumber << 1) + 1] = (channelright << 9) - 0x8000; // use << 1 for 16 bitupdatewavetable( wavetable, samplenumber & 0xff );samplenumber++;}// ---- save wav filesavesound( "mac ii. Wav", sounddata, samplenumber << 1, ksample_rate ); // multiply 2 because stereo. Return 1;}. Void preparewavetable( unsigned short *wavetable, unsigned int value ) {. // ---- prepare wave tableunsigned short index = 0;unsigned short wavetablevalue = value & 0xff;while( index < 64 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 8) & 0xff;while( index < 128 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 16) & 0xff;while( index < 192 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}wavetablevalue = (value >> 24) & 0xff;while( index < 256 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}}. Void updatewavetable( unsigned short *wavetable, unsigned short index ) {// ---- get value from wave tableunsigned short value = wavetable[index];// ---- calculate new value for wave tableif( index == 255 ) { // careful at last element of wave tablevalue += wavetable[0];value = (value >> 1);wavetable[0] = value;}else {value += wavetable[index+1];value = (value >> 1);wavetable[index+1] = value;}. }. #pragma mark ---- save wavvoid saveheader( file *filename, unsigned int samplerate );void savesounddatainteger16bit( file *filename, short *sounddata, unsigned int numbersamples );. Void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate ) {// ---- open filefile *file = fopen( filename, "wb" );if( file ) {// ---- "riff"fprintf( file, "riff" );// ---- length sound file - 8unsigned int lengthsoundfile = 32;lengthsoundfile += numberframes << 1; // một không có một mẫu vạt cho kênh trái và phải// ---- save file lengthfputc( (lengthsoundfile) & 0xff, file );fputc( (lengthsoundfile >> 8) & 0xff, file );fputc( (lengthsoundfile >> 16) & 0xff, file );fputc( (lengthsoundfile >> 24) & 0xff, file );// ---- "wave"fprintf( file, "wave" );// ---- save headersaveheader( file, samplerate );// ---- save sound datasavesounddatainteger16bit( file, sounddata, numberframes );// ---- close filefclose( file );}else {printf( "problem save file %s\n", filename );}}. Void saveheader( file *file, unsigned int samplerate ) {// ---- name for header "fmt "fprintf( file, "fmt " );// ---- header lengthfputc( 0x10, file ); // length 16 bytefputc( 0x00, file );fputc( 0x00, file );fputc( 0x00, file );// ---- method for encode, 16 bit pcmfputc( 0x01 & 0xff, file );fputc( (0x00 >> 8) & 0xff, file );// ---- number channels (stereo)fputc( 0x02, file );fputc( 0x00, file );// ---- sample rate (hz)fputc( samplerate & 0xff, file );fputc( (samplerate >> 8) & 0xff, file );fputc( (samplerate >> 16) & 0xff, file );fputc( (samplerate >> 24) & 0xff, file );// ---- number bytes/secondunsigned int numberbytessecond = samplerate << 2; // multiply 4 because short (2 byte) * 2 channelfputc( numberbytessecond & 0xff, file );fputc( (numberbytessecond >> 8) & 0xff, file );fputc( (numberbytessecond >> 16) & 0xff, file );fputc( (numberbytessecond >> 24) & 0xff, file );// ---- byte cho một khung (nên = số lượng mẫu vật * số lượng kênh)// ---- number bytes for sampleunsigned short bytesoneframe = 4; // short (2 byte) * 2 channelunsigned char bitsonesample = 16; // shortfputc( bytesoneframe & 0xff, file );fputc( (bytesoneframe >> 8) & 0xff, file );. Fputc( bitsonesample, file );fputc( 0x00, file );}. Void savesounddatainteger16bit( file *file, short *sounddata, unsigned int numbersamples ) {fprintf( file, "data" );unsigned int datalength = numbersamples << 1; // each sample 2 bytefputc( datalength & 0xff, file );fputc( (datalength >> 8) & 0xff, file );fputc( (datalength >> 16) & 0xff, file );fputc( (datalength >> 24) & 0xff, file );unsigned int sampleindex = 0;while( sampleindex < numbersamples ) {short shortdata = sounddata[sampleindex];fputc( shortdata & 0xff, file );fputc( (shortdata >> 8) & 0xff, file );sampleindex++;}}.
Author: Sieuamthanh
00:00
00:37
A couple of sound samples put together in one file. . . I recorded some of our tl-lights for a logo sequence i made en decided to put it up for you guys!. Enjoy!.
Author: Flojo
00:00
08:37
Field recording, interior of a car, closing the door. Starting and driving on different roads in belgium. Acceleration and halting. While driving the wind is blowing softly.
Author: Gecop
00:00
00:06
Lg v20 h910.
Author: Vacuumfan
00:00
00:19
Lg v20 h910.
Author: Vacuumfan
00:00
00:04
Jammed notes played at once with different pitches. Recorded and processed with audacity.
Author: Rvgerxini
00:00
04:36
The full situation of driving a car from opening the car and starting the motor to driving from estate to city highway to parking the car.
Author: Meisterleise
00:00
00:54
Sound of a boeing 777-200er taking off; engine type is rolls-royce trent 800.
Author: Sonicwave
00:00
00:57
A scene from the border of santa monica and west los angeles on one of a couple of nights of rioting and looting in downtown santa monica during the may-june 2020 george floyd protests. One or more sports cars can be heard tearing down the freeway at the intersection of the i-405 and the i-10. Several police cars are en route chasing after the speeding car(s). Recorded from a rooftop from a block or two away. The whole scene gradually fades away.
Author: Cloud Canvas
00:00
00:20
Stereo contact mics clipped to directly to the exhaust pipe of a honda crf250m motorcycle whilst the engine is started, revved and then stopped. Tascam dr-22wl, custom stereo contact mics. 20-05-10_102646_dr-22wl_crf250m_exhaust_contact. Wav.
Author: Richwise
00:00
03:28
I mounted the mic inside and on top of the car and drove trough the city, recording some ambulance, traffic, and a scooter that was tooting, later i turned of engine, opened and closed the car door and startet the engine, maybe you find it useful, let me know :). I used the equipment described in my profile.
Author: Deleted User
00:00
00:44
Engine sound of a 2 wheeler gear-less vehicle. . Recorded using a zoom h4n.
Author: Rsn
00:00
00:27
The sound of a jet startup. Slide pitch scaler in audacity with some noises i cant remember.
Author: Samsterbirdies
00:00
00:06
Sound effect for old computer game [cc zero].
Author: Beetlemuse
00:00
00:06
Strap yourself in bitches because this shit plane is about to take off!.
Author: Bugradio
00:00
00:11
My ford escort mk3 1985. Running stationairy after cold start. Recorded with my phone+- 30 cm from the tail pipe at 90 degrees.
Author: Escortmarius
00:00
00:21
My ford escort mk3 1985. Running stationairy after cold start. Recorded with my phone inside the car.
Author: Escortmarius
00:00
01:38
04-21-2013 - chainsaw cutting:sunday, april 21, 2013: had to take care of some fallen trees; seemed wise to record it. This chainsaw is brand new. 45cc recording taken at a distance of 30 feet and is unfortunately tarnished at the front with an ambulance siren. Recording gear: zoom h2/n @ 44. 1k/16bit using built-in xy microphones.
Author: Lonemonk
00:00
02:15
An older generation hp proliant server booting up and shutting down. The hard drive has been spinning for many years, therefore it sounds deeper than usual. Year: 2020location: aalsmeer, the netherlandschannels: 1 (mono)microphone: unknownmic polar pattern: cardioid.
Author: Pimstoltz
00:00
00:08
Car revving the engine in a parking lot. This recording also sounds well when slowed down. [cc zero] always thankful if you credit me, but being uploaded as cc0 it's not necessary.
Author: Beetlemuse
00:00
11:01
Cruising flight of a boeing 737 with calm passengers. Recorded at cruising altitude. Recorded with the zoom h5 stock mics, on the 2022 11 20. Seat 09c in front of the engines. Hope you enjoy :)ps: id love to hear how you use this sound, feel free to link your creations :).
Author: Sadiquecat
00:00
06:17
A huge steam tractor used in the early 1900's for running primarily farm equipment. Recorded at the miracle of america museum in polson, montana.
Author: Bansemer
00:00
00:36
This is the proccessed sound of me hissing and saying aaaaahhhhh. Made with audacity.
Author: Ecfike
00:00
00:51
Recorded using gopro of a trip heading upstream in a motorboat on a remote canadian river.
Author: Paulprit
00:00
00:27
I time-stretched the fire engine to absurd lengths, it was originally recorded with iphone 7.
Author: Itinerantmonk
00:00
00:20
Recording of the sound of an electromechanical timer in an electrical outlet for engine heaters. Recorded with the built in microphone of a canon digital ixus 950 is camera (which could be used to record audio only). File straight off from the camera with the exception of id3 tags added with foobar2000 v1. 3. 4.
Author: Johan G
00:00
01:10
Engine train, retiro train station, buenos aires argentina. Https://soundcloud. Com/wakerone.
Author: Wakerone
00:00
00:02
This sound is of pressing a button, switch, key, etc.
Author: Indian Gamer
00:00
00:32
A brief recording of a chevy cruz. Door opening - door closing - keys in ignition - revving - car driving on dirt road. Faint ocean sounds in the background. Tascam dr40.
Author: Yfjesse
00:00
00:05
A simple boot-up sound based on humphreyswill's korgstrings001. Aif at https://www. Freesound. Org/people/humphreyswill/sounds/61109/.
Author: Pizzaiolo
00:00
00:11
Horse race track opening trumpet sound and announcer saying "they're at the post, they're off".
Author: Rdb
00:00
00:21
Opening and closing of a small matchbox filled with 20 matchsticks. The movement was performed multiple times at various speeds. Recorded with sennheiser me 64 on focusrite scarlett.
Author: Imafoley
00:00
00:12
Ufo powers up and flies away.
Author: Breviceps
00:00
05:38
Me driving uphill in order to find a nice, elevated place for a photo. Recorded with a zoom h4n pro carelessly thrown in the passenger seat.
Author: Tiramisuper
00:00
00:12
A car starting up and revving several times (please note: it does not give a really throaty rev as it's a pretty old car).
Author: Yin Yang Jake
00:00
00:19
A collection of sounds, recorded at the fast-food parking lot. An uncommonly-warm day in the great north, the window was partway down so there is an outdoor ambient background. Straw is unwrapped and stuffed through the plastic lid of a drink, making its characteristic shriek. Remembering when as kids, four of us would sit around a table before the age of masking, and work the straws in the lids to generate a racket, i did that. This could be used as a cartoon-ish engine start failure, sounds like an old fiat. Then the crunching of a paper bag as a decadent burger is extracted.
Author: Nuncaconoci
00:00
01:26
The sound of an engine winding up and then winding down (with a sci-fi feel). It's actually a small plastic ball being spun around the inside of a balloon. . . Recorded with zoom h4n.
Author: Dsebeste
00:00
05:09
Record at garage outside with mixpre3 and a rode ntg2 96khz 24bit. Close perspective and from various angles. Edit yourself for your desire outcome.
Author: Singular Estudio
00:00
00:10
Two-cylinder compound steam engine running in ship's engine room. Paddle steamer ship (meissen) built in 1885, dresden-blasewitzrecording location: dresden / germany - 11. 09. 2021.
Author: Derplayer
00:00
05:54
Recorded with zoom h2n, 4ch mode, some post production with noise cancelling and merge of all tracks into a stereo one due to a problem with my zoom unit. Old methane gas boiler for heating independent apartments. The boiler is one of those models with an open combustion chamber, year 2000 or 2002.
Author: Falisca
00:00
00:05
This sound was made inside audacity and mixed in magix music maker. Free to use for anything.
Author: Mickboere
00:00
00:07
A mercedes-benz s63 amg coupe revving its v8 biturbo engine while standing in a car park.
Author: Marcelweiss
00:00
00:01
One steam train engine cycle extracted and cleaned up. A single steam train chuff without the background steam hiss. Credit to keith peter for the original field recording: https://freesound. Org/people/keithpeter/sounds/125211/.
Author: Birdofthenorth
00:00
00:21
2007 ford edge starting and driving away in a parking lot.
Author: Duesenbert
00:00
00:16
2007 ford edge starting and driving away in a parking lot.
Author: Duesenbert
451 - 500 of 634 Next page
/ 13